home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1996 #1 / Amiga Plus CD - 1996 - No. 1.iso / pd / netz / xbtx_v1.1 / modemservice.hpp < prev    next >
C/C++ Source or Header  |  1995-09-26  |  3KB  |  90 lines

  1. /*
  2. **    $Id: ModemService.hpp 1.3 1995/09/26 19:45:11 olsen Exp olsen $
  3. **
  4. **    :ts=4
  5. */
  6.  
  7. /*
  8.  * Copyright © 1995 by Olaf Barthel, All Rights Reserved
  9.  *
  10.  * Redistribution and use in source and binary forms, with or without
  11.  * modification, are permitted provided that the following conditions
  12.  * are met:
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in the
  17.  *    documentation and/or other materials provided with the distribution.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
  20.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  21.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
  22.  * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  24.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  25.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  26.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  27.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  28.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29.  *
  30.  * This software has not been validated by the ``Bundesamt fuer Zulassungen in
  31.  * der Telekommunikation'' of the ``Deutsche Bundepost Telekom'' and thus
  32.  * must not be used for accessing the BTX-Network of the Telekom in Germany.
  33.  *
  34.  * Diese Software hat keine Zulassung durch das Bundesamt fuer Zulassungen in
  35.  * der Telekommunikation der Deutschen Bundespost Telekom und darf daher nicht
  36.  * am Netz der Deutschen Bundespost Telekom in Deutschland betrieben werden.
  37.  */
  38.  
  39. #ifndef _MODEMSERVICE_HPP
  40. #define _MODEMSERVICE_HPP 1
  41.  
  42. #include "IOChannel.hpp"
  43. #include "BTXDisplay.hpp"
  44.  
  45. enum
  46. {
  47.     MODEM_Ok,
  48.     MODEM_NoCarrier,
  49.     MODEM_Error,
  50.     MODEM_Busy,
  51.     MODEM_NoDialTone,
  52.     MODEM_Connect,
  53.     MODEM_NoAnswer,
  54.     MODEM_Ring,
  55.     MODEM_Ringing,
  56.  
  57.     MODEM_Timeout
  58. };
  59.  
  60. class ModemService
  61. {
  62.     public:
  63.  
  64.         ModemService();
  65.         ~ModemService();
  66.  
  67.         LONG Open(IOChannel *Channel,BTXDisplay *Display);
  68.         VOID Close(VOID);
  69.  
  70.         LONG Connect(CONST STRPTR InitCommand,CONST STRPTR DialCommand,CONST STRPTR Number,CONST STRPTR HangupCommand);
  71.         VOID Disconnect(VOID);
  72.  
  73.     private:
  74.  
  75.         IOChannel            *AppChannel;
  76.         BTXDisplay            *AppDisplay;
  77.         STRPTR                 HangupCommand;
  78.         BOOL                 Connected;
  79.         LONG                 Next;
  80.  
  81.         struct MsgPort        *TimePort;
  82.         struct timerequest    *TimeRequest;
  83.         ULONG                 TimeMask;
  84.  
  85.         LONG GetLine(STRPTR Buffer,LONG Size);
  86.         VOID SendCommand(CONST STRPTR Command);
  87. };
  88.  
  89. #endif    // _MODEMSERVICE_HPP
  90.